R/open graph.R

Defines functions openGraph

openGraph = function( width=7 , height=7 , ... ) {
  if ( .Platform$OS.type != "windows" ) { # Mac OS, Linux
    X11( width=width , height=height , type="cairo" , ... )
  } else { # Windows OS
    windows( width=width , height=height , ... )
  }
}
laandrad/SCEDbayes documentation built on May 20, 2019, 7:31 p.m.